home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-1.iso / utility / horst_2.zip / CSCRIPT.DOC < prev    next >
Text File  |  1995-12-18  |  2KB  |  49 lines

  1. ------------------------------------------------------------------------
  2. CSCRIPT   DEBUG/XX/UU Script Generator  Ver 2.2 (c) 1995 Horst Schaeffer
  3. ------------------------------------------------------------------------
  4.  
  5. CSCRIPT is a script generator that converts binary files into standard
  6. ASCII code to be transferred by mail services. CSCRIPT generates plain
  7. DEBUG scripts, or XX/UUencoded scripts with optional DEBUG header
  8. (a built-in XX/UUdecoder).
  9.  
  10. Multi-page output (splitting into several files) is NOT supported.
  11.  
  12. Syntax:    CSCRIPT source_file > script_file [options]
  13.                    (drive, path as usual, script file by output redirection)
  14.  
  15. Options:   /D       DEBUG Script (default)
  16.            /X       XXencoded
  17.            /U       UUencoded
  18.            /XD /UD  XX/UUencoded with DEBUG Header
  19.  
  20.            /H       DEBUG code: hex only (no strings)
  21.            /A       DEBUG assembler mode (DB lines)
  22.            /[W]n    script width, n=10..79 columns (default: /W70)
  23.            /N       no tear lines (default: dashed lines at top/bottom)
  24.  
  25.     Case ignored. Multiple options may be combined (no spaces!),
  26.     for example:  /XDN78   or  /AW50
  27.  
  28. Decoding:
  29. To use DEBUG, the script must be cut out and saved into a file (any name)
  30. Then this file is fed into DEBUG by input redirection:
  31.  
  32.         DEBUG < file
  33.  
  34. Note: DEBUG of Novell DOS will also work (SID of DR-DOS won't).
  35.  
  36. XX/UUencoded scripts without DEBUG header must be decoded with UUDECODE.
  37. If the header is suppied, either DEBUG or UUDECODE will work.
  38. (For UUDECODE no changes neccessary, no need to cut out).
  39.  
  40. Please add the appropirate decoding instructions to your scripts.
  41. You may want to write a small batch file to do this job.
  42.  
  43. CSCRIPT supplies the CRC32 checksum of the original file (last line).
  44. This is the same sum that is used by archivers like PKZIP. The safest
  45. way, of course, is using an archived source file, so unpacking will
  46. fail if the script was damaged.
  47.  
  48. = 31 MAY 1995
  49.